home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / demos / 26 / pascal / curstest.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1986-06-19  |  256 b   |  12 lines

  1. PROGRAM curstest;
  2.  
  3.   {$I paswork\cursmvmt}
  4.  
  5.   BEGIN
  6.     GotoXY( 10, 10 );
  7.     writeln( 'hello' );
  8.     InverseVideo;
  9.     writeln( 'world' );
  10.     NormVideo;
  11.   END.